home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 422_01 / count.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-27  |  204 b   |  12 lines

  1. #include cflea.h
  2. /*
  3.  * Count to 1000, and display numbers as ASCII
  4.  */
  5. main()
  6. {
  7.     int i;
  8.     for(i=0; i < 1000; ++i)
  9.         printf("%u\n", i);
  10.     asm " FCB $FF";        /* Illegal opcode to stop simulator */
  11. }
  12.